home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Extravaganza - Disc 1
/
ShareWare Extravaganza 1 of 4 (The Ultimate Shareware Company).iso
/
grprogs
/
cshow833.exe
/
lha
/
PRINTDOC.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-06-19
|
616b
|
20 lines
Echo Off
Cls
Echo ┌───────────────────────────────────────────────────────┐
Echo │ PrintDoc: print all CompuShow documentation (on LPT1) │
Echo ├───────────────────────────────────────────────────────┤
Echo │ To send the output to another printer, cancel by │
Echo │ typing ^C at the pause and say "PrintDoc LPT2" or │
Echo │ "PrintDoc Com1", etc. │
Echo └───────────────────────────────────────────────────────┘
Echo On
Pause Type ^C to cancel, any other key to print
If [%1]==[] GoTo P1
GoTo P2
:P1
Copy *.Doc Lpt1
GoTo P3
:P2
Copy *.Doc %1
:P3
REM done.